Javabean$501015$ - traduzione in olandese
Diclib.com
Dizionario in linea

Javabean$501015$ - traduzione in olandese

REUSABLE SOFTWARE COMPONENTS USED IN JAVA PROGRAMMING
Java Bean; Javabean; Java Beans; Javabeans; JavaBean; Java beans; Bean (computing)

Javabean      
n. kleine toepassing van Javataal bedoeld voor gebruik van omschreven opdracht (bij gebruik van internet bv voor berekening van rente, voor het op de hoogte gebracht worden van weersgesteldheid, enz.)

Definizione

JavaBeans
<programming> A component architecture for the Java programming language, developed initially by Sun, but now available from several other vendors. JavaBeans components are called "beans". JavaBeans allows developers to create reusable software components that can then be assembled together using visual application builder tools including Sybase's PowerJ, Borland's JBuilder, IBM's Visual Age for Java, SunSoft's Java Workshop and Symantec's Visual Cafe. JavaBeans support Introspection (a builder tool can analyze how a Bean works), Customisation (developers can customise the appearance and behaviour of a Bean), Events (Beans can communicate), Properties (developers can customise and program with Beans(?)) and Persistence (customised Beans can be stored and reused). http://javasoft.com/beans/. (1997-11-20)

Wikipedia

JavaBeans

In computing based on the Java Platform, JavaBeans is a technology developed by Sun Microsystems and released in 1996, as part of JDK 1.1.

The 'beans' of JavaBeans are classes that encapsulate one or more objects into a single standardized object (the bean). This standardization allows the beans to be handled in a more generic fashion, allowing easier code reuse and introspection. This in turn allows the beans to be treated as software components, and to be manipulated visually by editors and IDEs without needing any initial configuration, or to know any internal implementation details.

As part of the standardization, all beans must be serializable, have a zero-argument constructor, and allow access to properties using getter and setter methods.